Loading TOC...

DELETE /manage/v2/databases/{id|name}/alert/configs

Summary

Delete the alert configuration specified by the mandatory uri parameter from the specified database.

URL Parameters
uri The URI of the alert. This parameter is required.
delete-triggers Specifies whether or not to delete the triggers associated with this alert. Specify true to delete the triggers or false to keep the triggers. The default is false.
format The format of the data in the response body. Allowed values: html, json or xml (default). Use this parameter to override the Accept header.
Request Headers
Accept The desired MIME type of the data in the response body. If the format parameter is present, it takes precedence over this header. Supported values: application/xml (default), application/json, text/html.

Response

Upon success, MarkLogic Server returns a status code 204 (No Content). If the request malformed or the alert does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.

Required Privileges

This operation requires one of the following:

Example


$ curl --anyauth --user user:password -X DELETE -i \
    http://localhost:8002/manage/v2/databases/Documents/alert/configs?uri=my-alert-config

==> Deletes the alert configuration for the alert with the 
    'my-alert-config' URI from the Documents database. 
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.